Modern UI Abort To Finish Mod
Written by dandaman32

INSTALLATION
------------
Unzip System_atf.nsh to "<NSIS>\Contrib\Modern UI"
Backup System.nsh (in case something went terribly wrong)
Rename System_atf.nsh to System.nsh
Unzip English.nsh and Default.nsh to "<NSIS>\Contrib\Modern UI\Language Files"
Compile atf.nsi to test it

USING
-----

Insert macro MUI_PAGE_ABORT after all other pages and make sure MUI_ABORTWARNING is defined.

CHANGING PAGE TEXT
------------------
Define MUI_ABORTPAGE_TITLE and MUI_ABORTPAGE_TEXT.  Really all the code was copied from the Welcome page so anything that worked there should work on the Abort page.

NOTES
-----
Should work with InstallOptions or other custom pages but not tried.  You MUST use the MUI_INSTALLOPTIONS_* macros for this -OR- insert the following code in the Show function of your page:

  StrCmp $MUI_ABORTED 1 "" +2
  Abort

The only language with Abort page strings is English.  If you know and use any other languages that's great and please submit your translations so I can make this mod multilingual.

Not yet implemented for uninstaller pages, may be added in the future.

That's all folks,
dandaman32